home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Python / getplatform.c < prev    next >
Text File  |  1995-12-21  |  95b  |  10 lines

  1. #ifndef PLATFORM
  2. #define PLATFORM "unknown"
  3. #endif
  4.  
  5. char *
  6. getplatform()
  7. {
  8.     return PLATFORM;
  9. }
  10.